all stats

Cow Bandit's stats

guessed the most

namecorrect guessesgames togetherratio

were guessed the most by

namecorrect guessesgames togetherratio

entries

round #45

submitted at
0 likes

guesses
comments 1
twelve bees ΒΆ

bzzzzzzzz


post a comment


connectfour.py ASCII text, with CRLF line terminators
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
import sys
x=4
y=[]
for i in range(695,7045):
    x=(x<<4)-365
    x//=11
    x*=3
    x=abs(x)
    y.append(x%7)
james=sys.stdin.readline()
match james:
    case 's\n':   #second
        james=int(sys.stdin.readline())
    case 'f\n'|'a\n'|'H\n'|_: #first/a/H
        pass
while(True):
    for i in y:
        print(i+True)
        james=int(sys.stdin.readline())